home *** CD-ROM | disk | FTP | other *** search
/ mail.altrad.com / 2015.02.mail.altrad.com.tar / mail.altrad.com / TEST / office deutch / INFOPATH.NL-NL / INFLR.CAB / FL_forr_snippet_121839_ENU____.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Extensible Markup Language  |  2005-08-12  |  942b  |  34 lines

  1. ∩╗┐<?xml version="1.0" encoding="utf-8" ?>
  2. <CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  3.     <CodeSnippet Format="1.0.0">
  4.         <Header>
  5.             <Title>forr</Title>
  6.             <Shortcut>forr</Shortcut>
  7.             <Description>Code snippet for reverse 'for' loop</Description>
  8.             <Author>Microsoft Corporation</Author>
  9.             <SnippetTypes>
  10.                 <SnippetType>Expansion</SnippetType>
  11.                 <SnippetType>SurroundsWith</SnippetType>
  12.             </SnippetTypes>
  13.         </Header>
  14.         <Snippet>
  15.             <Declarations>
  16.                 <Literal>
  17.                     <ID>index</ID>
  18.                     <Default>i</Default>
  19.                     <ToolTip>Index</ToolTip>
  20.                 </Literal>
  21.                 <Literal>
  22.                     <ID>max</ID>
  23.                     <Default>length</Default>
  24.                     <ToolTip>Max length</ToolTip>
  25.                 </Literal>
  26.             </Declarations>
  27.             <Code Language="csharp"><![CDATA[for (int $index$ = $max$ - 1; $index$ >= 0 ; $index$--)
  28.             {
  29.             $selected$ $end$
  30.             }]]>
  31.             </Code>
  32.         </Snippet>
  33.     </CodeSnippet>
  34. </CodeSnippets>